home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Den Norske Hjemmedataklubben / Amiga-Hack 93-1 (1993)(Data-Tronic AS)(NO)(Disk 2 of 2)[b dump].zip / Amiga-Hack 93-1 (1993)(Data-Tronic AS)(NO)(Disk 2 of 2)[b dump].adf / BROWSER / FONTS.H < prev    next >
C/C++ Source or Header  |  1992-12-15  |  355b  |  16 lines

  1. #ifndef FONTS_H
  2. #define FONTS_H
  3. #ifndef GRAPHICS_GFXBASE_H
  4. #include <graphics/gfxbase.h>
  5. #endif
  6. #ifndef GRAPHICS_TEXT_H
  7. #include <graphics/text.h>
  8. #endif
  9.  
  10. extern struct GfxBase *GfxBase;
  11.  
  12. #define FONTWIDTH (GfxBase->DefaultFont->tf_XSize)
  13. #define FONTHEIGHT (GfxBase->DefaultFont->tf_YSize)
  14. #define FONTBASELINE (GfxBase->DefaultFont->tf_Baseline)
  15. #endif
  16.